Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.5.7
IccColorLookupTable8Bit Constructor(Byte[],Byte,Byte[])
See Also 
Leadtools.ColorConversion Namespace > IccColorLookupTable8Bit Class > IccColorLookupTable8Bit Constructor : IccColorLookupTable8Bit Constructor(Byte[],Byte,Byte[])




numberOfGridPoints
Array that contains the number of grid points in each dimension.
percision
Precision of data elements, in bytes. Must be 01h.
data
Buffer of color lookup table data points. The size of each element is 1 byte. (Hence the "8Bit" in the class name).
Initializes a new IccColorLookupTable8Bit with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal numberOfGridPoints() As Byte, _
   ByVal percision As Byte, _
   ByVal data() As Byte _
)
Visual Basic (Usage)Copy Code
Dim numberOfGridPoints() As Byte
Dim percision As Byte
Dim data() As Byte
 
Dim instance As IccColorLookupTable8Bit(numberOfGridPoints, percision, data)
C# 
public IccColorLookupTable8Bit( 
   byte[] numberOfGridPoints,
   byte percision,
   byte[] data
)
Managed Extensions for C++ 
public: IccColorLookupTable8Bit( 
   byte[]* numberOfGridPoints,
   byte percision,
   byte[]* data
)
C++/CLI 
public:
IccColorLookupTable8Bit( 
   array<byte>^ numberOfGridPoints,
   byte percision,
   array<byte>^ data
)

Parameters

numberOfGridPoints
Array that contains the number of grid points in each dimension.
percision
Precision of data elements, in bytes. Must be 01h.
data
Buffer of color lookup table data points. The size of each element is 1 byte. (Hence the "8Bit" in the class name).

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also